home *** CD-ROM | disk | FTP | other *** search
- !!Script
- // Copyright ⌐ 1997-2001 - Modelworks Software
-
- // Insert script helper for:
-
- /**
- @Object: Application
- @Method: newCLDebugger - create a mew CLDebugger (command line debugger). The purpose
- of the object is to allow a command line debugger to be visually wrapped.
- This method returns the same object as Java.newJDKDebugger() when called with
- the jpdaOptions are empty.
- @Syntax: Application.newCLDebugger(toolpath, parameters, onCleanupHandlerPath[, verbose, output])
- @Summary: newCLDebugger - create a mew CLDebugger (command line debugger)
- */
-
- function DoCommand()
- {
- var editor = getActiveEditor();
- if (editor)
- {
- var selection = editor.getSelection();
- editor.replace("Application.newCLDebugger(toolpath, parameters, onCleanupHandlerPath[, verbose, output])", selection);
- editor.setActive("Insert Application.newCLDebugger");
- }
- }
-
- !!/Script
-
-